home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.os.ms-windows.programmer.misc,comp.lang.c
- Path: news.sprintlink.net!news1!ts02-and-07
- From: dlmiller@iquest.net (Doug & Rose Miller)
- Subject: Re: Help needed using C's conio.h functions.
- X-Nntp-Posting-Host: ts02-and-07.iquest.net
- Message-ID: <DoE2tH.FsB@iquest.net>
- Sender: news@iquest.net (News Admin)
- Organization: IQuest Network Services
- X-Newsreader: News Xpress Version 1.0 Beta #2.1
- References: <4i7sun$49j@darkstar.UCSC.EDU>
- Date: Sun, 17 Mar 1996 01:53:15 GMT
-
- nwaussie@cats.ucsc.edu (Nicholas Cory Williams) wrote:
- +I am trying to program a game that was origianlly going to be for DOS until
- +I realised that my Turbo C/C++ compiler for Windows only compiled for windows.
- +Now, I have to find a way of using basic text windows or something to output
- +my text card game.
- +I thought I had found the perfect solution when I found functions like
- +cprintf and window and clrscr, etc. in the conio.h library however, they
- +won't work.
- +
- +#include<conio.h>
- +
- +int main(void)
- +{
- + clrscr();
- + window(10, 10, 20, 20);
- + cprintf("Hello world\r\n");
- + getch();
- + return 0;
- +}
- +
- +This program gives me these warnings and errors:
- +Warning WINDOW.C 6: Call to function 'window' with no prototype in function
- +main
- +Warning WINDOW.C 7: Call to function 'cprintf' with no prototype in function
- +main
- +Linker Error: Undefined symbol _cprintf in module WINDOW.C
- +Linker Error: Undefined symbol _window in module WINDOW.C
- +
- +I think I have all my directories set up right, (all my other functions
- +work fine with calls to other libraries).
- +
- +Might this have something to do with me running all this under Win95? Is there
- +something else I need to do to get these to work? I tried putting in
- +prototypes for these functions but that only got rid of the warnings.
- +
- +Please help me....
- +
- Compiles clean for me. Check your compiler switches.
-